home *** CD-ROM | disk | FTP | other *** search
/ Champak 139 / (Vol 139) Sep 24 2011.iso / Games / santa_mobile.swf / scripts / DefineSprite_318 / frame_3 / DoAction.as
Text File  |  2011-09-24  |  381b  |  20 lines

  1. if(-50 < getProperty(this, _X))
  2. {
  3.    setProperty(this, _X, getProperty(this, _X) - _root.speed);
  4.    play();
  5. }
  6. else
  7. {
  8.    setProperty(this, _X, 1050);
  9.    time = getTimer() + 2000;
  10.    gotoAndPlay(1);
  11. }
  12. if(this.hitTest(_root.mobile))
  13. {
  14.    _root.soun.start(0,1);
  15.    _root.scor += 100;
  16.    setProperty(this, _X, 1050);
  17.    time = getTimer() + 2000;
  18.    gotoAndPlay(1);
  19. }
  20.